* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
  align-content: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #e7f3ee;
  font-weight: bold;
  font-size: 18px;
  transition: 0s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: #11111171;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
  background-color: #11111171;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background-color: #11111171;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
/* ------------------ */

.flexcontainer {
    display:flex;
    gap: 20px;
}

.navgationbar {
    font-size: 25px;
    list-style-type: none;
    margin: 0;
    padding-right: 5%;
    background-color: #1e2b24;
    display: flex;
    justify-content: center;
}

.navgationbar li {
    display: block;
    color: #e7f3ee;
    align-content: center;
    text-decoration: none;
}

.navgationbar li a {
    display: block;
    color: #e7f3ee;
    padding: 14px 16px;
    text-decoration: none;
}

.navgationbar li a:hover {
    background-color: #0d1310;
}

.contentboxleft {
    display: flex;
    justify-content: left;
    flex-direction: row-reverse;
    margin: auto;
    width: 40%;
}

.contentboxright {
    display: flex;
    justify-content: left;
    flex-direction: row-reverse;
    margin: auto;
    width: 40%;
}

.contentboxcenter {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin: auto;
}

.contentboxsolo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding: 20px;
    width: 40%;
}

.colorbutton{
    background-color: #2e7d5b;
    border: 2px solid #2e7d5b;
    cursor: pointer;
    width: 20%;
    height: 10%;
    font-size: 22px;
    color:#e7f3ee;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
.colorbutton:hover{
    background-color: rgb(45, 158, 92);
    border: 2px solid rgb(45, 158, 92);
}

.emptybutton{
    background-color: transparent;
    border: 2px solid #2e7d5b;
    cursor: pointer;
    width: 20%;
    height: 10%;
    font-size: 22px;
    color:#e7f3ee;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
}
.emptybutton:hover{
    border: 2px solid rgb(45, 158, 92);
}

body {
    background-color: #101613;
    font-family: Tahoma, sans-serif;
}

p {
    color: #e7f3ee;
    text-align: justify;
    font-size: 18px;
}
p a {
    color:darkturquoise;
}
p a:hover{
    color: cyan;
}

h1 {
    color:#289e6b;
    text-align: center;
    white-space: nowrap;
}

h2 {
    color: #289e6b;
    text-align: center;
}

h3 {
    color: #289e6b;
    text-align: left;
}
h3 a {
    color:darkturquoise;
}
h3 a:hover{
    color: cyan;
}